home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / CPP / WFC010.ZIP / INCLUDE / CNETINFO.HPP < prev    next >
C/C++ Source or Header  |  1995-12-07  |  1KB  |  45 lines

  1. #if ! defined( NET_INFORMATION_CLASS_HEADER )
  2.  
  3. /*
  4. ** Author: Samuel R. Blackburn
  5. ** CI$: 76300,326
  6. ** Internet: sammy@sed.csc.com
  7. **
  8. ** You can use it any way you like as long as you don't try to sell it.
  9. **
  10. ** Any attempt to sell WFC in source code form must have the permission
  11. ** of the original author. You can produce commercial executables with
  12. ** WFC but you can't sell WFC.
  13. **
  14. ** Copyright, 1995, Samuel R. Blackburn
  15. **
  16. ** $Workfile: $
  17. ** $Revision: $
  18. ** $Modtime: $
  19. */
  20.  
  21. #define NET_INFORMATION_CLASS_HEADER
  22.  
  23. class CNetworkInformation : public _NETINFOSTRUCT
  24. {
  25.    public:
  26.  
  27.       CNetworkInformation();
  28.       CNetworkInformation( const NETINFOSTRUCT *source );
  29.       CNetworkInformation( const CNetworkInformation& source );
  30.  
  31.       virtual ~CNetworkInformation();
  32.  
  33.       virtual void Copy( const NETINFOSTRUCT *source );
  34.       virtual void Copy( const CNetworkInformation& source );
  35.       virtual void Empty( void );
  36.  
  37. #if defined( _DEBUG )
  38.  
  39.       virtual void Dump( CDumpContext& dump_context ) const;
  40.  
  41. #endif // _DEBUG
  42. };
  43.  
  44. #endif // NET_INFORMATION_CLASS_HEADER
  45.